{!! Form::label('event_name', trans('general.evento').' '.trans('general.nombre')) !!} {!! Form::text('event_name', null, ['class' => 'form-control']) !!} @if ($errors->has('event_name')) {{ $errors->first('event_name') }} @endif
{!! Form::label('description', trans('general.evento').' '.trans('general.descripcion')) !!} {!! Form::textarea('description', null, ['class' => 'form-control']) !!} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{!! Form::label('date_start', trans('general.desde')) !!}
{!! Form::text('date_start', null, ['class' => 'form-control datepicker', 'data-inputmask' => "'alias': 'mm/dd/yyyy'", 'data-mask' => '']) !!}
@if ($errors->has('date_start')) {{ $errors->first('date_start') }} @endif
{!! Form::label('date_end', trans('general.desde')) !!}
{!! Form::text('date_end', null, ['class' => 'form-control datepicker', 'data-inputmask' => "'alias': 'mm/dd/yyyy'", 'data-mask' => '']) !!}
@if ($errors->has('date_end')) {{ $errors->first('date_end') }} @endif
{!! Form::label('image', trans('general.imagen')) !!} {!! Form::file('image') !!} @if ($errors->has('image')) {{ $errors->first('image') }} @endif
{!! Form::submit(trans('general.save'), ['class' => 'btn btn-success btn-flat']) !!} {{trans('general.cancel')}}