@extends('app') @section('content') @if(Session::has('flash_message'))
{!! Session::get('flash_message') !!}
@endif @if($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif
فيديو

{!! Form::model($video,['method' => $video ? 'PATCH' : 'POST','route' => $video ? ['video.update', $video->id] : 'video.store','id'=>'form_video']) !!}
{!! Form::text('title', null, ['class' => 'form-control','id'=>'title','required'=>true]) !!} 60 الحروف المتبقية
{!! Form::text('video_link', null, ['class' => 'form-control','id'=>'video_link','required'=>true]) !!}
{!! Form::submit('حفظ', ['class' => 'btn btn-primary pull-right']) !!}

{!! Form::close() !!}
@endsection @section('page_script') @endsection