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

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

Please fill in the below details:

@csrf
@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') > 2) Last name is Greater than 2! @else {{ $errors->first('lastname') }} @endif
@if ($errors->has('company')) The company field is required @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @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
@if ($errors->has('pincode')) {{ $errors->first('pincode') }} @endif
Back
@endsection