@extends('auth.login_layout') @section('title', __('common.login')) @section('content')
{{ Form::open(['url' => url('/login'), 'method' => 'post', 'class' => 'form']) }}
{{ Form::text('email', old('email'), [ 'id' => 'email', 'placeholder' => __('common.email').' '.__('common.or').' '.__('common.pilot_id'), 'class' => 'form-control', 'required' => true, ]) }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{ Form::password('password', [ 'name' => 'password', 'class' => 'form-control', 'placeholder' => __('auth.password'), 'required' => true, ]) }}
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{ Form::close() }}
@endsection