@extends('layouts.app') @section('title', ' - Add Tariff') @section('content')
{{ __('application.tariff.create_new') }} {{ __('application.tariff.tariff_list') }}
@csrf
@if ($errors->has('place_id')) {{ $errors->first('place_id') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
@if ($errors->has('end_date')) {{ $errors->first('end_date') }} @endif
@if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
@if ($errors->has('min_amount')) {{ $errors->first('min_amount') }} @endif
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@endsection @push('scripts') @endpush