@extends('layouts.form')
@section('title', trans('menu.customers'))
@section('action', route('customer.save'))
@section('content_form')
{!! form_title(trans('lang.basic')) !!}
{!! form_text('first_name', $d->first_name, trans('customer.first_name')) !!}
{!! form_text('last_name', $d->last_name, trans('customer.last_name')) !!}
{!! form_text('code', $d->code, trans('customer.code')) !!}
{!! form_text('tel', $d->tel, trans('customer.tel'), 20) !!}
{!! form_text('tax_no', $d->tax_no, trans('customer.tax_no'), 20) !!}
{!! form_textarea('address', $d->address, trans('customer.address')) !!}
{!! form_text('deposit', $d->deposit, trans('customer.deposit'), 100, null, [
'readonly' => 'readonly'
]) !!}
{!! form_hidden('id', $d->id) !!}
@endsection