@extends("la.layouts.app") @section("contentheader_title") Employee : @endsection @section("contentheader_description", $employee->$view_col) @section("section", "Employees") @section("section_url", url(config('laraadmin.adminRoute') . '/employees')) @section("sub_section", "Edit") @section("htmlheader_title", "Employees Edit : ".$employee->$view_col) @section("main-content") @if (count($errors) > 0)
@endif
{!! Form::model($employee, ['route' => [config('laraadmin.adminRoute') . '.employees.update', $employee->id ], 'method'=>'PUT', 'id' => 'employee-edit-form']) !!} @la_form($module) {{-- @la_input($module, 'name') @la_input($module, 'email') @la_input($module, 'dept') --}}
{!! Form::submit( 'Update', ['class'=>'btn btn-success']) !!}
{!! Form::close() !!}
@endsection @push('scripts') @endpush