@extends('admin.layout.app') @section('title', 'Create Location') @section('content')
Create New Location
Back
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@include('admin.components.country-dropdown', ['name' => 'country', 'selected' => old('country')])
@endsection @push('scripts') @endpush