@section('page-title') {{ $rate ? 'Edit Instructor Rate' : 'Add Instructor Rate' }} @endsection
Back
@csrf @if ($rate) @method('PUT') @endif @if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
Please fix the following errors
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
$
Cancel