You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
829 B

@extends('layouts.guest')
@section('title', __('auth.login'))
@section('content')
<div class="login-panel col-md-4 col-md-offset-4 text-center">
{!! appLogoImage() !!}
<h3>{{ config('app.name') }}</h3>
<div class="panel panel-default">
<div class="panel-body">
{{ Form::open(['route' => 'auth.login']) }}
{!! FormField::email('email', ['label' => false, 'placeholder'=> __('auth.email')]) !!}
{!! FormField::password('password', ['label' => false, 'placeholder'=> __('auth.password')]) !!}
{{ Form::submit(__('auth.login'), ['class' => 'btn btn-success btn-block']) }}
{{ link_to_route('auth.reset-request', __('auth.forgot_password'), [], ['class' => 'btn btn-link']) }}
{{ Form::close() }}
</div>
</div>
</div>
@endsection