@extends('layouts.app') @section('styles') @endsection @section('content')
{{ __('Dashboard') }} > {{ __('Settings') }}
@csrf
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if ($errors->has('employee_amount')) {{ $errors->first('employee_amount') }} @endif
Total booked slots - {{ $settings->booked_slots }} @if ($errors->has('available_slots')) {{ $errors->first('available_slots') }} @endif
@if ($errors->has('subject')) {{ $errors->first('subject') }} @endif
@if ($errors->has('banner')) {{ $errors->first('banner') }} @endif
@if ($errors->has('terms_conditions')) {{ $errors->first('terms_conditions') }} @endif
@endsection @section('scripts') @endsection