@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.warehouse.title_singular') }}
@csrf {{--
@if($errors->has('code'))
{{ $errors->first('code') }}
@endif {{ trans('cruds.warehouse.fields.code_helper') }}
--}}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.warehouse.fields.name_helper') }}
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.warehouse.fields.address_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.warehouse.fields.email_helper') }}
@if($errors->has('contact_number'))
{{ $errors->first('contact_number') }}
@endif {{ trans('cruds.warehouse.fields.contact_number_helper') }}
@if($errors->has('contact_person'))
{{ $errors->first('contact_person') }}
@endif {{ trans('cruds.warehouse.fields.contact_person_helper') }}
@if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif {{ trans('cruds.warehouse.fields.phone_number_helper') }}
@if($errors->has('opening_date'))
{{ $errors->first('opening_date') }}
@endif {{ trans('cruds.warehouse.fields.opening_date_helper') }}
@endsection