@extends('layouts.app') @section('style') @endsection @section('content')
New Firearms
@csrf
@if ($errors->has('fire_arms_id'))
{{ $errors->first('fire_arms_id') }}
@endif
@if ($errors->has('license_number'))
{{ $errors->first('license_number') }}
@endif
@if ($errors->has('license_expiration_date'))
{{ $errors->first('license_expiration_date') }}
@endif
@if ($errors->has('make'))
{{ $errors->first('make') }}
@endif
@if ($errors->has('kind'))
{{ $errors->first('kind') }}
@endif
@if ($errors->has('caliber'))
{{ $errors->first('caliber') }}
@endif
@if ($errors->has('model'))
{{ $errors->first('model') }}
@endif
@if ($errors->has('serial_number'))
{{ $errors->first('serial_number') }}
@endif
@if ($errors->has('limit'))
{{ $errors->first('limit') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@if ($errors->has('remarks'))
{{ $errors->first('remarks') }}
@endif
@section('script') @endsection @endsection