@extends('layouts.app') @section('title', 'Add training request') @section('content')
Create
@csrf
@foreach($students as $student) @browser('isFirefox') @else @endbrowser @endforeach @error('student') {{ $errors->first('student') }} @enderror
@error('training_area') {{ $errors->first('training_area') }} @enderror
@error('type') {{ $errors->first('type') }} @enderror
@error('ratings') {{ $errors->first('ratings') }} @enderror
@endsection @section('js') @vite('resources/js/vue.js') @endsection