@extends('layouts.app')
@section('title', $title)
@section('content')
@include('flash::message')
@if($is_admin)
{!! Form::open(['route' => 'video_tour.update', 'method' => 'put']) !!}
{!! Form::label('video_tour_frame', trans('labels.insert_video_frame'), ['class' => 'mb10']) !!}
{!! Form::textarea('video_tour_frame', null,
['class' => 'form-control mb10', 'rows' => '2', 'required']) !!}
{!! Form::close() !!}
@endif
@if($is_manager && empty($video_tour_frame))
@lang('labels.empty.data')
@endif
{!! $video_tour_frame !!}
@endsection