{!! Form::open([ 'url' => action([\Modules\Gym\Http\Controllers\ClassController::class, 'store']), 'method' => 'post', 'id' => 'add_class', ]) !!}

@lang('gym::lang.classes')

{!! Form::label('name', __('gym::lang.name') . '*') !!} {!! Form::text('name', null, [ 'class' => 'form-control', 'required', 'placeholder' => __('gym::lang.name'), ]) !!}
{!! Form::label('start_time', __('gym::lang.start_time')) !!} {!! Form::text('start_time', null, [ 'class' => 'form-control time_picker', 'readonly', ]) !!}
{!! Form::label('end_time', __('gym::lang.end_time')) !!} {!! Form::text('end_time', null, [ 'class' => 'form-control time_picker', 'readonly', ]) !!}
{!! Form::label('description', __('gym::lang.description')) !!} {!! Form::textarea('description', null, [ 'class' => 'form-control', 'placeholder' => __('gym::lang.description'), 'rows' => 3, ]) !!}
{!! Form::close() !!}