{!! Form::label('maxweekend', 'Cantidad máxima por fin de semana') !!} {!! Form::text('maxweekend', null, ['class' => 'form-control']) !!} @if ($errors->has('maxweekend')) {{ $errors->first('maxweekend') }} @endif
{!! Form::label('maxweek', 'Cantidad máxima por semana') !!} {!! Form::text('maxweek', null, ['class' => 'form-control']) !!} @if ($errors->has('maxweek')) {{ $errors->first('maxweek') }} @endif
{!! Form::label('maxbookmotor', 'Cantidad máxima embarcación a Motor') !!} {!! Form::text('maxbookmotor', null, ['class' => 'form-control']) !!} @if ($errors->has('maxbookmotor')) {{ $errors->first('maxbookmotor') }} @endif
{!! Form::label('maxbookvela', 'Cantidad máxima embarcación a Vela') !!} {!! Form::text('maxbookvela', null, ['class' => 'form-control']) !!} @if ($errors->has('maxbookvela')) {{ $errors->first('maxbookvela') }} @endif

Temporadas altas

{!! Form::checkbox('january') !!} {!! Form::label('january', 'Enero') !!}
{!! Form::checkbox('february') !!} {!! Form::label('february', 'Febrero') !!}
{!! Form::checkbox('march') !!} {!! Form::label('march', 'Marzo') !!}
{!! Form::checkbox('april') !!} {!! Form::label('april', 'Abril') !!}
{!! Form::checkbox('may') !!} {!! Form::label('may', 'Mayo') !!}
{!! Form::checkbox('june') !!} {!! Form::label('june', 'Junio') !!}
{!! Form::checkbox('july') !!} {!! Form::label('july', 'Julio') !!}
{!! Form::checkbox('august') !!} {!! Form::label('august', 'Agosto') !!}
{!! Form::checkbox('september') !!} {!! Form::label('september', 'Septiembre') !!}
{!! Form::checkbox('october') !!} {!! Form::label('october', 'Octubre') !!}
{!! Form::checkbox('november') !!} {!! Form::label('november', 'Noviembre') !!}
{!! Form::checkbox('december') !!} {!! Form::label('december', 'Diciembre') !!}
{!! Form::submit(trans('general.save'), ['class' => 'btn btn-success btn-flat']) !!} {{trans('general.cancel')}}