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

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

{!! Form::label('name', __('gym::lang.name') . '*') !!} {!! Form::text('name', null, [ 'class' => 'form-control', 'required', 'placeholder' => __('gym::lang.name'), ]) !!}
{!! Form::label('amount', __('gym::lang.amount') . '*') !!} {!! Form::number('amount', null, [ 'class' => 'form-control', 'required', 'step' => '0.01', 'placeholder' => __('gym::lang.amount'), ]) !!}
{!! Form::label('duration', __('gym::lang.duration') . '*') !!} {!! Form::select('duration', $durations, '', [ 'class' => 'form-control', 'required', ]) !!}
{!! Form::label('duration', __('gym::lang.classes')) !!}
@foreach ($classes as $key => $class)
@endforeach
{!! Form::label('notes', __('gym::lang.notes')) !!} {!! Form::textarea('notes', null, [ 'class' => 'form-control', 'placeholder' => __('gym::lang.notes'), 'rows' => 3, ]) !!}
{!! Form::close() !!}