@extends('admin::index') @section('content') {{ $header or trans('admin.title') }} {{ $description or trans('admin.description') }} @include('partials.breadcrumb') @include('partials.error') @include('admin::partials.exception') @include('admin::partials.toastr') {{-- MAIN CONTENT --}} {{ Form::open(array('route' => 'customers.store', 'method' => 'POST', 'class'=>'', 'enctype'=>'multipart/form-data' )) }} {{ __("Tên khách hàng *") }} {{ __("SĐT *") }} {{ __("Email") }} {{ __("Địa chỉ") }} {{ __("Giới tính") }} {{ \Form::select('gender', ['male'=>'Nam','female'=>'Nữ','other'=>'Khác'], old('gender'), ['class'=>'form-control']) }} {{ __("Ngày sinh ") }} {{--{{ \Form::selectRange('birthday', \Carbon\Carbon::now()->format('Y'), 1960, old('birthday'), ['class'=>'form-control']) }}--}} {{ __("Người thân") }} {{ __('Huỷ bỏ') }} {{ __('Thêm') }} {{ Form::close() }} @endsection @php @endphp