@extends('layouts.user') @section('content') @push('css') {{-- dropzone --}} @endpush

Profile Update

@csrf
@if ($errors->has('name')) {{ $errors->first('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('nominee_name')) {{ $errors->first('nominee_name') }} @endif
@if ($errors->has('relation_with_nominee')) {{ $errors->first('relation_with_nominee') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('gender')) {{ $errors->first('gender') }} @endif
@if ($errors->has('religion')) {{ $errors->first('religion') }} @endif
@if ($errors->has('date_of_birth')) {{ $errors->first('date_of_birth') }} @endif
@if ($errors->has('nid_no')) {{ $errors->first('nid_no') }} @endif
@if ($errors->has('profession')) {{ $errors->first('profession') }} @endif
@if ($errors->has('blood_group')) {{ $errors->first('blood_group') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@push('alljs') @if ($message = Session::get('error')) @endif @if ($message = Session::get('success')) @endif @endpush @endsection