{!! 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