2024-04-07 07:28:58 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
|
|
<div class='card'>
|
|
|
|
<div class='card-header d-flex justify-content-between align-items-center'>
|
|
|
|
<h2 class="">{{ label('Edit Branches') }}</h2>
|
|
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('branches.index')); ?>
|
2024-04-05 05:22:15 +00:00
|
|
|
|
2024-04-07 07:28:58 +00:00
|
|
|
</div>
|
|
|
|
<div class='card-body'>
|
|
|
|
<form action="{{ $editable ? route('branches.update', [$data->branch_id]) : route('branches.store') }}"
|
|
|
|
id="updateCustomForm" method="POST">
|
|
|
|
@csrf <input type=hidden name='branch_id' value='{{ $editable ? $data->branch_id : '' }}' />
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-6">
|
|
|
|
{{ createCustomSelect('tbl_companies', 'title', 'company_id', $editable ? $data->companies_id : '', 'Companies Id', 'companies_id', 'form-control select2', 'status<>-1') }}
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-6">{{ createText('title', 'title', 'Title', '', $editable ? $data->title : '') }}
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-12 pb-2">
|
|
|
|
{{ createTextarea('description', 'description ckeditor-classic', 'Description', $editable ? $data->description : '') }}
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-6">{{ createText('email', 'email', 'Email', '', $editable ? $data->email : '') }}
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-6">{{ createText('telephone', 'telephone', 'Telephone', '', $editable ? $data->telephone : '') }}
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-6">{{ createText('phone1', 'phone1', 'Phone1', '', $editable ? $data->phone1 : '') }}
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-6">{{ createText('phone2', 'phone2', 'Phone2', '', $editable ? $data->phone2 : '') }}
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-6">{{ createText('address', 'address', 'Address', '', $editable ? $data->address : '') }}
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-6">
|
|
|
|
{{ createText('company_reg', 'company_reg', 'Company Reg', '', $editable ? $data->company_reg : '') }}
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-6">
|
|
|
|
{{ createText('company_pan', 'company_pan', 'Company Pan', '', $editable ? $data->company_pan : '') }}
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-12 pb-2">{{ createImageInput('logo', 'Logo', '', $editable ? $data->logo : '') }}
|
|
|
|
</div>
|
|
|
|
<div class="col-lg-12 pb-2">{{ createPlainTextArea('remarks', '', 'Remarks', $editable ? $data->remarks : '') }}
|
|
|
|
</div>
|
|
|
|
<div class="col-md-12"><?php createButton('btn-primary btn-update', '', 'Submit'); ?>
|
|
|
|
<?php createButton('btn-primary btn-cancel', '', 'Cancel', route('branches.index')); ?>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|