@extends('layout.app') @section('title','Create Branch') @push('headerscript') @endpush @section('content')
{!! Form::open(['route' => ['branch.store'], 'method' => 'post','autocomplete'=>'off']) !!}
{{$errors->first('branch_name')}}
{{$errors->first('branch_code')}}
{{$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('footerscript') @endpush