@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.addBranch.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
{{ trans('cruds.addBranch.fields.branch_name') }}
@if($errors->has('branch_name'))
{{ $errors->first('branch_name') }}
@endif
{{ trans('cruds.addBranch.fields.branch_name_helper') }}
{{ trans('cruds.addBranch.fields.state') }}
@foreach($states as $id => $entry)
state->id ?? '') == $id ? 'selected' : '' }}>{{ $entry }}
@endforeach
@if($errors->has('state'))
{{ $errors->first('state') }}
@endif
{{ trans('cruds.addBranch.fields.state_helper') }}
{{ trans('cruds.addBranch.fields.city') }}
@foreach($cities as $id => $entry)
city->id ?? '') == $id ? 'selected' : '' }}>{{ $entry }}
@endforeach
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif
{{ trans('cruds.addBranch.fields.city_helper') }}
{{ trans('cruds.addBranch.fields.gst') }}
@if($errors->has('gst'))
{{ $errors->first('gst') }}
@endif
{{ trans('cruds.addBranch.fields.gst_helper') }}
{{ trans('global.save') }}
@endsection @section('scripts') @endsection