Видео

Засах

{{ Form::open(['method' => 'put', 'url' => '/admin/videos/' . $item->id, 'files' => true]) }}
{{ Form::label('title', 'Нэр') }} {{ Form::text('title', $item->title, ['class' => 'form-control', 'id' => 'title', 'placeholder' => 'Нэр', 'required']) }} {{ $errors->has('title') ? $errors->first('title') : '' }}
{{ Form::label('filename', 'Youtube ID') }} {{ Form::text('filename', $item->filename, ['class' => 'form-control', 'id' => 'filename', 'placeholder' => 'Youtube ID', 'required']) }} {{ $errors->has('filename') ? $errors->first('filename') : '' }}
{{ Form::submit('Хадгалах', ['class' => 'btn btn-primary']) }}
{{ Form::close() }}