@extends("LaravelVueAdmin.layouts.app") @section("contentheader_title") Departments : @endsection @section("contentheader_description", $department->$view_col) @section("section", "Departments") @section("section_url", url(config('LaravelVueAdmin.adminRoute') . '/departments')) @section("sub_section", "Edit") @section("htmlheader_title", "Department Edit : ".$department->$view_col) @section("main-content") @if (count($errors) > 0)
@endif
{!! Form::model($department, ['route' => [config('LaravelVueAdmin.adminRoute') . '.departments.update', $department->id ], 'method'=>'PUT', 'id' => 'department-edit-form']) !!} @lv_form($module) {{-- @lv_input($module, 'name') @lv_input($module, 'tags') @lv_input($module, 'color') --}}
{!! Form::submit( 'Update', ['class'=>'btn btn-success']) !!}
{!! Form::close() !!}
@endsection @push('scripts') @endpush