@extends('layouts.site_layout') @section('content')

{{ $eventName[0] }} ( {{ $startDate }}, {{ $endDate }} )

Please fill in the below details:

@if(Session::has('success'))
{{ Session::get('success') }} @php Session::forget('success'); @endphp
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('lastname')) {{ $errors->first('lastname') }} @endif
@if ($errors->has('membership')) The membership field is required. @endif
@if ($errors->has('company')) The company field is required. @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if ($errors->has('state')) The state field is required @endif
@if ($errors->has('city')) The city field is required @endif
Back
@endsection