@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
|
@if ($errors->has('sex'))
{{ $errors->first('sex') }}
@endif
|
@if ($errors->has('dob'))
{{ $errors->first('dob') }}
@endif
|
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
|
|