Видео

Шинээр нэмэх

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