@extends('layouts.app') @section('content')
{{ __('Dashboard') }}
@csrf @if ($errors->has('roll')) {{ $errors->first('roll') }} @endif @if (count($errors) > 0)

Error!

@foreach($errors->all() as $error) {{ $error }}
@endforeach
@endif
@endsection