@extends('layouts.doctor') @section('title', 'Edit Award') @section('header', 'Edit Recognition') @section('content')

Update Award

Modify this professional milestone.

@csrf @method('PUT') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if($award->images && count($award->images) > 0)
@foreach($award->images as $path)
@endforeach
@endif
Select more clinical certificates
Cancel
@endsection