@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title']]) !!}
@csrf
@if ($errors->has('days'))
{{ $errors->first('days') }}
@endif
@if ($errors->has('department_id'))
{{ $errors->first('department_id') }}
@endif
@if ($errors->has('type_id'))
{{ $errors->first('type_id') }}
@endif
@if ($errors->has('status_id'))
{{ $errors->first('status_id') }}
@endif
@if (hasPermission('leave_assign_create')) @endif
@endsection