@extends('layout.master') @section('css') @stop @section('content')
@csrf

{{ 'Edit Patient Details' }}

{{-- start edit part --}}
{{-- --}}
Choose Picture
@if ($patient->getUserDetails->profile_picture == '') @else @endif
@if ($errors->has('profile_picture'))
{{ $errors->first('profile_picture') }}
@endif
@if ($errors->has('patient_name'))
{{ $errors->first('patient_name') }}
@endif
{{-- End Edit Part --}}
@stop @section('script') @stop