@extends('layouts.master') @section('title') Edit Blood Donor @endsection @section('content')
@csrf @method('PUT') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Please enter donor name.
Please select a blood group.
Please enter phone number.
@endsection @section('script') @endsection