@extends('frontend.layouts.app') @section('content')
@if($errors->has('password'))
{{$errors->first('password')}}
@endif
@if($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('full_name'))
{{$errors->first('full_name')}}
@endif
@if($errors->has('father_name'))
{{$errors->first('father_name')}}
@endif
@if($errors->has('mother_name'))
{{$errors->first('mother_name')}}
@endif
@if($errors->has('gender'))
{{$errors->first('gender')}}
@endif
@if($errors->has('marital_status'))
{{$errors->first('marital_status')}}
@endif
@if($errors->has('dob'))
{{$errors->first('dob')}}
@endif
@if($errors->has('country_id'))
{{$errors->first('country_id')}}
@endif
@if($errors->has('blood_group'))
{{$errors->first('blood_group')}}
@endif
@if($errors->has('present_address'))
{{ $errors->first('present_address') }}
@endif
@if($errors->has('permanent_address'))
{{ $errors->first('permanent_address') }}
@endif
@if($errors->has('additional_info'))
{{$errors->first('additional_info')}}
@endif
@endsection