@extends('layouts.front_layout') @section('content')
@include('flash_messages.admin_message')

{!! Form::open(['method' => 'post', 'route' => ['account_login'], 'class' => 'custom-form login-form LoginFormValidate']) !!}
{!! Form::select('id_type', id_type_list(), null, ['class' => 'form-select']) !!}
{{ $errors->first('id_type') }}
{!! Form::text('id_number', null, ['class' => 'form-control']) !!} {{ $errors->first('id_number') }}
{!! Form::date('dob', null, ['class' => 'form-control', 'max' => date('Y-m-d')]) !!} {{ $errors->first('dob') }}
If you are a first time user, please click here to register
{{ getSettingData('config_company_name') }}
{!! Form::close() !!}
@endsection