{{-- Extends layout --}} @extends('layout.default') {{-- Content --}} @section('content')

Add Event

@csrf @isset($batch->id) {{ method_field('PATCH')}} @endisset @if ($errors->any())
Error!
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($errors->has('Name')) {{ $errors->first('Name') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('EventDate')) {{ $errors->first('EventDate') }} @endif
@if ($errors->has('EndDate')) {{ $errors->first('EndDate') }} @endif
@if ($errors->has('Regstart')) {{ $errors->first('Regstart') }} @endif
@if ($errors->has('regend')) {{ $errors->first('regend') }} @endif
@endsection @section('scripts') @endsection