@extends('layouts.app') @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Website Settings').' / '.trans('Gallery') .' / '. trans('Edit').'']) @include('components.sectionbar.frontmanagement-bar')
{!! Form::model($gallery, ['id' => 'committee_form','class'=>'row','method' => 'PATCH','route' => ['academic.gallery.update', $gallery->id]]) !!}
{!! Form::text('title', NULL, array('id' => 'title','required', 'class' => 'form-control', 'placeholder' => trans('Title'))) !!} @if ($errors->has('title')) {{ $errors->first('title') }} @endif
{!! Form::textarea('description', NULL, array('rows' => '5','id' => 'description', 'required', 'class' => 'form-control', 'placeholder' => trans('Description'),'rows'=>'3')) !!} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{!! Form::select('status',status(), old('status'), array('id' => 'status', 'class' => 'form-control', 'placeholder' => trans('Choose'))) !!} @if ($errors->has('description')) {{ $errors->first('status') }} @endif
@method('PUT')
{!! Form::close() !!}
@component('components.cropper.element',['width'=>'380','height'=>'366','type'=>'square']) @endcomponent @endsection