@extends('setup.index') @section('title', 'Service & Pricing') @section('setting_page') @include('setup.partials.action_toolbar', [ 'title' => (isset($additional_service->id)) ? 'Edit additional service' : 'Create new additional service', 'hide_save_button' => TRUE, 'back_link' => [ 'title' => 'back to additional services', 'url' => route("additional_services_list") ] ])
{{ csrf_field() }} @if(isset($additional_service->id)) {{ method_field('PATCH') }} @endif
{{ showError($errors, 'name') }}
{{ showError($errors, 'description') }}
{{ showError($errors, 'rate') }}
@endsection