@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.addBranch.title_singular') }}
@csrf
@if($errors->has('branch_name'))
{{ $errors->first('branch_name') }}
@endif {{ trans('cruds.addBranch.fields.branch_name_helper') }}
@if($errors->has('state'))
{{ $errors->first('state') }}
@endif {{ trans('cruds.addBranch.fields.state_helper') }}
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif {{ trans('cruds.addBranch.fields.city_helper') }}
@if($errors->has('gst'))
{{ $errors->first('gst') }}
@endif {{ trans('cruds.addBranch.fields.gst_helper') }}
@endsection @section('scripts') @endsection