@extends('layouts.app') @section('title') {{ __('messages.employee_payroll.edit_employee_payroll') }} @endsection @section('header_toolbar')

@yield('title')

{{ __('messages.common.back') }}
@endsection @section('content')
@include('layouts.errors')
{{ Form::model($employeePayroll, ['route' => ['employee-payrolls.update', $employeePayroll->id], 'method' => 'patch','id' => 'editPayroll']) }} @include('employee_payrolls.edit_fields') {{ Form::close() }}
{{Form::hidden('employeeUrl',route('employees.list'),['id'=>'editEmployeeUrl','class'=>'employeeUrl'])}} {{Form::hidden('employeeOwnerId',$employeePayroll->owner_id,['id'=>'editEmployeeOwnerUrl','class'=>'employeeOwnerId'])}} {{Form::hidden('isEdit',true,['class'=>'isEdit'])}} @endsection @section('scripts') @endsection @section('page_scripts') {{-- --}} {{-- --}} {{-- --}} @endsection