@extends('layouts.master') @section('contain')

Update Caregiver

{{--
Basic Information
--}}
@csrf @method('PUT')
@error('full_name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
{{--
@error('dob') {{ $message }} @enderror
--}}
@if ($errors->has('password'))
  • {!! $errors->first('password') !!}
@endif
@if ($errors->has('password_confirmation'))
  • {{ $errors->first('password_confirmation') }}
@endif
{{--
--}} {{--
--}}
@endsection