Add Poster
{!! Form::open([ 'url' => action('App\Http\Controllers\admin\PosterController@store'), 'method' => 'post', 'files' => true, 'id' => 'employee_add_form', 'enctype' => 'multipart/form-data', ]) !!}
{!! Form::label('postername', 'Poster Name *', ['class' => 'form-label']) !!} {!! Form::text('postername',null, ['class' => 'form-control', 'placeholder' => 'Enter Poster Name', 'required']) !!}
{!! Form::label('desc', 'Description *', ['class' => 'form-label']) !!} {!! Form::textarea('desc', null, ['class' => 'form-control', 'placeholder' => 'Enter Description', 'required']) !!}
{!! Form::label('product_video', 'Product Video', ['class' => 'form-label']) !!}
{!! Form::label('product_audio', 'Product Audio', ['class' => 'form-label']) !!}
{!! Form::label('exp_date', 'Expiration Date *', ['class' => 'form-label']) !!} {!! Form::date('exp_date', null, ['class' => 'form-control', 'required']) !!}

Cancel
{!! Form::close() !!}