{{ __('Add Walk Through') }}

{{ Form::open(['id'=>'addWalkThroughForm','files' => 'true']) }}
{{ Form::label('title', __('Title').(':'), ['class' => 'form-label']) }} {{ Form::text('title', null, ['id'=>'walkThroughTitle','class' => 'form-control','required' ,'placeholder' => 'Title']) }}
{{ Form::label('url', __('Subtitle').(':'),['class' => 'form-label required']) }} {{ Form::text('subtitle', null, ['id'=>'walkThroughSubtitle','class' => 'form-control','placeholder' => 'Subtitle']) }}
{{ Form::label('status', __('Status').(':'),['class' => 'form-label']) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit','class' => 'btn btn-primary m-0','id' => 'walkThrough','data-loading-text' => " Processing..."]) }}
{{ Form::close() }}