@extends('admin.app_main') @section('content')
Register User
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('surname')) {{ $errors->first('surname') }} @endif
@if ($errors->has('employee_id')) {{ $errors->first('employee_id') }} @endif
@if ($errors->has('national_id')) {{ $errors->first('national_id') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection