@extends('layouts.admin') @section('header') Edit Event @endsection @section('content') Edit Event @if ($errors->any()) Please fix the following errors: @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @csrf @method('PUT') Event Name Client Select a Client @foreach ($clients as $client) client_id) == $client->id ? 'selected' : '' }}>{{ $client->name }} @endforeach Description {!! old('description', $event->description) !!} Start Date and Time End Date and Time Location is_active) ? 'checked' : '' }}> Active Cancel Update Event @endsection @push('styles') @endpush @push('scripts') @endpush