@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' )) }}
{{ \Form::select('gender', ['male'=>'Nam','female'=>'Nữ','other'=>'Khác'], old('gender'), ['class'=>'form-control']) }}
{{ \Form::selectRange('birthday', \Carbon\Carbon::now()->format('Y'), 1960, old('birthday'), ['class'=>'form-control']) }}
{{ __('Huỷ bỏ') }}
{{ Form::close() }}
@endsection @php @endphp