@extends('frontend.layout.app') @section('title', 'Registration') @push('css') @endpush @section('content') @if (session()->has('message'))
{{ session()->get('message') }}
@endif

Registration

Please fill in this form to create an account
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('par_add')) {{ $errors->first('par_add') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
+88
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('car_model')) {{ $errors->first('car_model') }} @endif
@endsection @push('js') @endpush