@extends('layouts.view') @section('title',trans('checkInRequest.checkInRequests')) @section('links') @endsection @section('content')

{{trans('checkInRequest.checkInRequests')}}

@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @if(isset($checkInRequest)) @method('PUT') @endif
@if(isset($checkInRequest)) @else @endif
@endsection @section('scripts') @endsection