{!! Form::label('type', trans('general.credit')) !!}
{!! Form::text('credit', null, ['class' => 'form-control']) !!}
@if ($errors->has('credit'))
{{ $errors->first('credit') }}
@endif
{!! Form::label('name', trans('general.nombre')) !!}
{!! Form::text('name', null, ['class' => 'form-control']) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::radio('shift', '1', true) !!}
{!! Form::label('shift', 'MaƱana', ['class' => 'margin']) !!}
{!! Form::radio('shift', '2') !!}
{!! Form::label('shift', 'Tarde', ['class' => 'margin']) !!}
{!! Form::label('schedule', trans('general.schedule')) !!}
{!! Form::select('schedule_id', $schedule, null, ['class' => 'form-control']) !!}
@if ($errors->has('schedule'))
{{ $errors->first('schedule') }}
@endif