{!! Form::label('name', trans('Choose Categories *')) !!}
{!! Form::label('name', trans('Choose City *')) !!}
{!! Form::label('name', trans('Event Name *')) !!} {!! Form::text('name', old('name'), ['class' => 'form-control', 'placeholder' => trans('Event Name *')]) !!} {!! $errors->first('name', ':message') !!}
{!! Form::label('req_volunteer', trans('Required Resources *')) !!} {!! Form::number('req_volunteer', old('req_volunteer'), ['class' => 'form-control', 'placeholder' => trans('Required Resources *')]) !!} {!! $errors->first('req_volunteer', ':message') !!}
{!! Form::label('latitude', trans('Latitude *')) !!} {!! Form::text('latitude', old('latitude'), ['class' => 'form-control', 'placeholder' => trans('Latitude *')]) !!} {!! $errors->first('latitude', ':message') !!}
{!! Form::label('longitude', trans('Longitude *')) !!} {!! Form::text('longitude', old('longitude'), ['class' => 'form-control', 'placeholder' => trans('Longitude *')]) !!} {!! $errors->first('longitude', ':message') !!}
{!! Form::label('event_date', trans('Event From Date *')) !!} {!! Form::date('event_date', old('event_date'), ['class' => 'form-control', 'placeholder' => trans('Event Date *')]) !!} {!! $errors->first('event_date', ':message') !!}
{!! Form::label('event_time', trans('Event From Time *')) !!} {!! Form::time('event_time', old('event_time'), ['class' => 'form-control', 'placeholder' => trans('Event Time *')]) !!} {!! $errors->first('event_time', ':message') !!}
{!! Form::label('todate', trans('Event To Date *')) !!} {!! Form::date('todate', old('todate'), ['class' => 'form-control', 'placeholder' => trans('Event Date *')]) !!} {!! $errors->first('todate', ':message') !!}
{!! Form::label('totime', trans('Event To Time *')) !!} {!! Form::time('totime', old('totime'), ['class' => 'form-control', 'placeholder' => trans('Event Time *')]) !!} {!! $errors->first('totime', ':message') !!}
{!! Form::label('price', trans('Payment *')) !!} {!! Form::text('price', old('price'), ['class' => 'form-control', 'placeholder' => trans('Payment *')]) !!} {!! $errors->first('price', ':message') !!}
{!! Form::label('short_desc', trans('Short Description *')) !!} {!! Form::text('short_desc', old('short_desc'), ['class' => 'form-control', 'placeholder' => trans('Short Description *')]) !!} {!! $errors->first('short_desc', ':message') !!}
{!! Form::label('description', trans('Description *')) !!} {!! Form::textarea('description', old('description'), ['class' => 'form-control', 'placeholder' => trans('Description *')]) !!} {!! $errors->first('description', ':message') !!}
{!! Form::label('address', trans('Address *')) !!} {!! Form::textarea('address', old('address'), ['class' => 'form-control', 'placeholder' => trans('Address *')]) !!} {!! $errors->first('address', ':message') !!}
{!! Form::label('hours', trans('Hours Per Day *')) !!} {!! Form::text('hours', old('hours'), ['class' => 'form-control', 'placeholder' => trans('Hours Per Day *')]) !!} {!! $errors->first('hours', ':message') !!}
{!! Form::label('image1', trans('Image 1 *')) !!} {!! Form::file('image1', old('image1'), ['class' => 'form-control', 'placeholder' => trans('Image 1 *')]) !!} {!! $errors->first('image1', ':message') !!}
{!! Form::label('image2', trans('Image 2 ')) !!} {!! Form::file('image2', old('image2'), ['class' => 'form-control', 'placeholder' => trans('Image 2 *')]) !!} {!! $errors->first('image2', ':message') !!}
{!! Form::label('image3', trans('Image 3 ')) !!} {!! Form::file('image3', old('image1'), ['class' => 'form-control', 'placeholder' => trans('Image 3 *')]) !!} {!! $errors->first('image3', ':message') !!}
{!! Form::label('image4', trans('Image 4 ')) !!} {!! Form::file('image4', old('image1'), ['class' => 'form-control', 'placeholder' => trans('Image 4 *')]) !!} {!! $errors->first('image4', ':message') !!}
{!! Form::label('status', trans('Status')) !!}
{!! Form::label('status', trans('Enable')) !!} {!! Form::radio('status', 1, ['class' => 'form-control', 'placeholder' => trans('user::users.form.last-name')]) !!} {!! $errors->first('status', ':message') !!}    {!! Form::label('status', trans('disable')) !!} {!! Form::radio('status', 0, ['class' => 'form-control', 'placeholder' => trans('user::users.form.last-name')]) !!} {!! $errors->first('status', ':message') !!}