@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.service.title_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.service.fields.name_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.service.fields.amount_helper') }}
@foreach(App\Models\Service::TYPE_RADIO as $key => $label)
@endforeach @if($errors->has('type'))
{{ $errors->first('type') }}
@endif {{ trans('cruds.service.fields.type_helper') }}
@endsection