@extends('adminlte::page')
@section('title', trans('adminlte::parkingsites.title.edit'))
@section('content')
@if ($errors->any())
Whoops! There were some problems with your input.
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@endsection
@section('js')
{!! JsValidator::formRequest('App\Http\Requests\Admin\ParkingSiteRequest', '#parkingsite-form'); !!}
@stop