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

{{$title}}

@include('backend.layouts.alert')
@csrf @if(isset($pageData) && $pageData) @method('PUT') @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('terminal')) {{ $errors->first('terminal') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('latitude')) {{ $errors->first('latitude') }} @endif
@if ($errors->has('longitude')) {{ $errors->first('longitude') }} @endif
@if ($errors->has('google_map_link')) {{ $errors->first('google_map_link') }} @endif
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
@if ($errors->has('location_type')) {{ $errors->first('location_type') }} @endif
@if ($errors->has('access_requirements')) {{ $errors->first('access_requirements') }} @endif
@if ($errors->has('cargo_details')) {{ $errors->first('cargo_details') }} @endif
@if ($errors->has('loading_offloading_instructions')) {{ $errors->first('loading_offloading_instructions') }} @endif
@if ($errors->has('range_start')) {{ $errors->first('range_start') }} @endif
@if ($errors->has('range_end')) {{ $errors->first('range_end') }} @endif
@if(isset($pageData) && $pageData)
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@endif
@endsection