@extends('layouts.master') @section('title') @lang('Title') @endsection @section('css') @endsection @section('content')
Department
@if ($message = Session::has('success'))
{{ $message }}
@endif
{{ csrf_field() }} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif

Treatments and Procedures
@php $department_treatments=department_treatments(); @endphp @foreach($department_treatments as $key => $label)
{{$label }}
@endforeach

@if ($errors->has('meta_title'))
{{ $errors->first('meta_title') }}
@endif
@if ($errors->has('meta_description'))
{{ $errors->first('meta_description') }}
@endif
@endsection @section('script') @include('admin.dropzone-single-create')