@extends('admin.app') @section('page_title','Edit Video') @section('page_location') @endsection @section('main-content')

Edit Video

{{ Form::model($video,['route' => ['video.update' , $video->id ],'method' => 'PUT','class' => 'form' ,'id' =>'createroomsform','files' => true] ) }}
{!! Form::label('Title') !!} {!! Form::text('title', null, array('required', 'class'=>'form-control', 'placeholder'=>'Title')) !!}
{!! Form::label('Video') !!} {!! Form::text('video_id', null, array('required', 'class'=>'form-control', 'placeholder'=>'Video')) !!}
{!! Form::submit('Update!!', array('class'=>'btn btn-primary')) !!}
{!! Form::close() !!}
@endsection