@extends('layouts.master') @section('title') @lang('Title') @endsection @section('css') @endsection @section('content')
Hospital
@if ($message = Session::get('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('location'))
{{ $errors->first('location') }}
@endif
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('about_us'))
{{ $errors->first('about_us') }}
@endif
@if ($errors->has('google_map'))
{{ $errors->first('google_map') }}
@endif
@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') @endsection