@extends('layouts.main') @section('page-title') {{ __('Driver Check - DL list maintanance') }} @endsection @section('content')
@include('layouts.sidebar')
@csrf
First name


Surname


Date of birth


Address


Donor statue


License type


DL number


Class
1 2 3 4 5 6

Version number


License valid from


License valid to
    @if (Session::has('success'))
  • {!! session('success') !!}
  • @endif
    @if (Session::has('error'))
  • {!! session('error') !!}
  • @endif
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection