@extends('layouts.admin') @section('content')
@csrf @method('PUT')

Please select a preferred time for your appointment:

@foreach(['8:00 AM', '10:00 AM', '12:00 PM', '2:00 PM', '4:00 PM'] as $time)
time) == $time) checked @endif required />
@endforeach
@if($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif
@endsection