{!! Form::text('title', NULL, array('id' => 'n_title','required', 'class' => 'form-control', 'placeholder' => trans('Enter Title'))) !!}
@error('title')
{{ $message }}
@enderror
{!! Form::text('venue', NULL, array('id' => 'n_title', 'class' => 'form-control', 'placeholder' => trans('Enter Event Venue'))) !!}
@error('venue')
{{ $message }}
@enderror
{!! Form::text('event_date', NULL, array('id' => 'event_date', 'class' => 'form-control', 'required')) !!}
{!! Form::text('event_time', NULL, array('id' => 'event_time', 'class' => 'form-control', 'required')) !!}
{!! Form::text('event_timend', NULL, array('id' => 'event_timend', 'class' => 'form-control', 'required')) !!}
@error('file')
{{ $message }}
@enderror
{!! Form::textarea('description', NULL, array('id' => 'n_description','required','rows'=>5, 'class' => 'form-control rounded-0 ckeditor')) !!}
@error('description')
{{ $message }}
@enderror