@extends('backend.layouts.app') @section('title', @$data['title']) @section('content')

{{ @$data['title'] }}

@csrf
@if (hasPermission('department_create')) {{ _trans('common.Add department') }} @endif @if ($errors->has('department_id'))
{{ $errors->first('department_id') }}
@endif
@if (hasPermission('designation_create')) {{ _trans('common.Add designation') }} @endif @if ($errors->has('designation_id'))
{{ $errors->first('designation_id') }}
@endif
@if ($errors->has('shift_id'))
{{ $errors->first('shift_id') }}
@endif
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@foreach ($data['competences'] as $competences)
{{ $competences->name }}
@endforeach
@if (@$data['url'])
@endif
@endsection @section('script') @endsection