@extends('Shared.Layouts.BilettmLayout',['folder' => 'desktop']) @section('content') {{\DaveJamesMiller\Breadcrumbs\Facades\Breadcrumbs::render('help')}}
@csrf
{!! Form::label('title_ru', trans("Event.event_title_ru"), array('class'=>'control-label required')) !!} {!! Form::text('title_ru', Input::old('title_ru'),array('class'=>'form-control' )) !!}
{!! Form::label('description_ru', trans("Event.event_description_ru"), array('class'=>'control-label required')) !!} {!! Form::textarea('description_ru', Input::old('description_ru'), array( 'class'=>'form-control editable', 'rows' => 5 )) !!}
{!! Form::label('venue_name', trans("Event.venue_name"), array('class'=>'control-label required ')) !!} {!! Form::select('venue_id',$categories->pluck('id','title'), Input::old('venue_id'), ['class' => 'form-control','id'=>'venue_name']) !!}
@endsection