@extends('site.master') @section('title','My Profile') @section('content') @include('site.layouts.breadcrumb')
{{ csrf_field() }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('mobile'))
{{ $errors->first('mobile') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('full_address'))
{{ $errors->first('full_address') }}
@endif
@if($errors->has('date_of_birth'))
{{ $errors->first('date_of_birth') }}
@endif
@if($errors->has('occupation'))
{{ $errors->first('occupation') }}
@endif
@stop @section('page_scripts') @endsection