{{-- Start of Selection --}} @extends('layouts.dashboard') @section('content')

{{ isset($chofer) ? 'Editar Chofer' : 'Nuevo Chofer' }}

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @if(isset($chofer)) @method('PUT') @endif
Cancelar
@endsection {{-- End of Selection --}}