@extends('layout.app') @section('title','Create Branch') @push('header_script') @endpush @section('content')
{!! Form::open(['route' => ['branch.store'],'onsubmit'=>'BtnSubmit.disabled = true', 'class'=>'row g-3 needs-validation', 'method' => 'post', 'autocomplete'=>'off']) !!}
{{$errors->first('branch_code')}}
{{$errors->first('branch_name')}}
{{$errors->first('contact_no')}}
{!! Form::select('state_id', [''=>'--Select--',]+$state, old('state_id'), ['class'=>'form-control select2','id'=>'state_id','required']) !!}
{{$errors->first('state_id')}}
{{$errors->first('city')}}
{{$errors->first('address')}}
{!! Form::close() !!}
@endsection @push('footer_script') @endpush