@extends('layouts.app') @section('content-header')

{{__('employees.edit_leave')}}

@endsection @section('content')

{{ !empty($title) ? ucfirst($title) : 'Leave' }}

{{ csrf_field() }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include ('leaves.form', ['leave' => $leave,])
@endsection