@extends('layouts.app') @section('title', __('Edit Committee')) @section('content')
@include('layouts.leftside-menubar')
@php $typename = $type == 1 ? 'committee' : 'member'; @endphp
@include('components.pages-bar',['pageTitle' =>''. trans('Human Resource').' / '. trans(ucfirst($typename)).' / '. trans('Edit').'']) @include('components.sectionbar.teacher-bar')
{!! Form::model($committee, ['id' => 'committee_form','method' => 'PATCH','route' => ['academic.committee.update', $committee->id]]) !!} @include('committee.element')
{!! Form::button(trans('Update'), array('class' => btnClass(),'type' => 'submit' )) !!}
{!! Form::close() !!}
@component('components.cropper.element',['width'=>'300','height'=>'300','type'=>'square']) @endcomponent @endsection