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

{{ label('Add Department') }}

@csrf
{{ createText('title', 'title', 'Title', '', $editable ? $data->title : '') }}
{{ createPlainTextArea('remarks', '', 'Remarks', $editable ? $data->remarks : '') }}
{{ createCustomSelect('tbl_branches', 'title', 'branch_id', $editable ? $data->branches_id : '', 'Branches Id', 'branches_id', 'form-control select2', 'status<>-1') }}
{{ createTextarea('description', 'description ckeditor-classic', 'Description', $editable ? $data->description : '') }}
@endsection