@extends('Layouts.adminLayout') @section('title') {{__('Insert User')}} @endsection @section('breadcrumb')
@endsection @section('content')

{{__('Insert User')}}

@CSRF
@if ($errors->has('name')) @endif
@if ($errors->has('family'))
{{ $errors->first('family') }}
@endif
@if ($errors->has('mobile'))
{{ $errors->first('mobile') }}
@endif
@if ($errors->has('national_identity'))
{{ $errors->first('national_identity') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('username'))
{{ $errors->first('username') }}
@endif
@if ($errors->has('password')) @endif
@if ($errors->has('birth_date'))
{{ $errors->first('birth_date') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
@endsection @section('script') @endsection